home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
25
/
7
/
DISK2574.ZIP
/
TC20SH.ZIP
/
TC20.MAK
< prev
Wrap
Text File
|
1990-12-18
|
442b
|
19 lines
# TC20.MAK for The CTRL+C LIBRARY - MAKEFILE
# Borland Turbo-C Ver. 2.0
DRIVE = c:
MODEL = s # <-----change this for different memory model
CLIB = $(DRIVE)\$(MODEL)tc20cl.lib graphics.lib
INCLUDE = $(DRIVE)\tc20\include
target: cldemo.exe bootdemo.exe
cldemo.exe:
tcc -m$(MODEL) -DTC20 -I$(INCLUDE) -L$(CLIB) cldemo.c
bootdemo.exe:
tcc -m$(MODEL) -DTC20 -I$(INCLUDE) -L$(CLIB) bootdemo.c